home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / tdddconv.lha / tddd2mif.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-10  |  346 b   |  19 lines

  1. /* tomif.c - convert TTDDD file to FrameMaker MIF format
  2.  *         - written by Glenn M. Lewis - 7/24/91
  3.  */
  4.  
  5. static char rcs_id[] = "$Id: tomif.c,v 1.3 1991/10/10 19:30:24 glewis Exp glewis $";
  6.  
  7. #include <stdio.h>
  8. #include "ttdddlib.h"
  9.  
  10. WORLD *world;
  11.  
  12. main()
  13. {
  14.     world = read_World(stdin);
  15.     write_MIF(world, stdout, VIEW_ALL_FOUR);
  16.     exit(0);
  17. }
  18.  
  19.